home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NOVA - For the NeXT Workstation
/
NOVA - For the NeXT Workstation.iso
/
SourceCode
/
OOP_Course
/
Examples
/
DragDemo_1.1
/
DiagramCell.h
< prev
next >
Wrap
Text File
|
1992-12-19
|
344b
|
17 lines
#import <appkit/appkit.h> //Standard for 3.0, inefficient for 2.1.
@interface DiagramCell:Object
{
NXRect frameRect;
NXImage *image;
}
- setImage:(NXImage *)anImage;
- getFrame:(NXRect *)rect;
- moveBy:(NXCoord)dx :(NXCoord)dy inViewRect:(NXRect *)rect;
- mouseHit:(NXPoint *)location;
- drawSelf;
- drawInDirtyRect:(NXRect *)rect;
@end